/* styles.css */
.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px; /* Set a fixed height for the photo container */
	width: 400px;
    transition: height 0.3s ease-in-out;
	
}

.member-photo img {
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Center the image within the container */
	border-radius: 10px;
  
}

.member-details {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.member-details h4 {
    margin-bottom: 10px;
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}
.row{
	margin-top: 20px;
	
}

   .logo-container {
			text-align: left;
			margin-left: 100px;        
   }

        .logo  {
            font-family: 'Cinzel Decorative', sans-serif ;
            font-size: 50px;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 3px;
			
        }

        .subtext {
            font-family: 'Cinzel Decorative', sans-serif ;
            font-size: 10px ;
            color: #FFFFFF;
            margin-top: 10px;
        }

        .logo span {
            color: #FFFFFF;
		}

		
